home *** CD-ROM | disk | FTP | other *** search
/ AOL File Library: 2,801 to 2,900 / aol-file-protocol-4400-2801-to-2900.zip / AOLDLs / C++ Files Library / Acere (PowerPlant, Game) 1.2 / AcereÄ.sit / Acereƒ / Code / CardWindow.h < prev    next >
C/C++ Source or Header  |  1995-02-12  |  512b  |  22 lines

  1. #include <LWindow.h>
  2.  
  3. class CardWindow : public LWindow
  4. {
  5. public:
  6.     enum { class_ID = 'Cwnd' };
  7.     
  8.                     CardWindow();
  9.                     CardWindow(const SWindowInfo &inWindowInfo);
  10.                     CardWindow(ResIDT inWINDid, Uint32 inAttributes,
  11.                                 LCommander *inSuperCommander);
  12.                     CardWindow(LStream *inStream);
  13.     virtual            ~CardWindow();
  14.     
  15.     static CardWindow*    CreateWindow(ResIDT inWindowID,
  16.                                 LCommander *inSuperCommander);
  17.     static CardWindow*    CreateCardWindowStream(LStream *inStream);
  18.         
  19.     virtual void        DrawSelf();
  20.  
  21. } ;
  22.